home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Module1"
- 'all of this was done by me, i did not copy it from nobody. I got it from the
- 'api text viewer, so shut up! :)
-
- Public Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long
-
- Public Function playwav(ByVal wName As String)
- PlaySound wName, Form1.hDC, 0
- End Function
-